home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fmenu
- AutoRedraw = -1 'True
- BackColor = &H00FFFFFF&
- BorderStyle = 3 'Fixed Double
- Caption = "VideoSoft vsView Demo"
- ClientHeight = 4755
- ClientLeft = 420
- ClientTop = 1425
- ClientWidth = 8295
- Height = 5160
- Left = 360
- LinkTopic = "Form3"
- MaxButton = 0 'False
- Picture = FMENU.FRX:0000
- ScaleHeight = 4755
- ScaleWidth = 8295
- Top = 1080
- Width = 8415
- Begin vsViewPort vsViewPort1
- BorderStyle = 0 'None
- ConvInfo = FMENU.FRX:E022
- Height = 315
- Left = 7590
- Top = 300
- VirtualHeight = 0
- VirtualWidth = 0
- Visible = 0 'False
- Width = 495
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "FlowCharts && Borders"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 10
- Left = 4275
- TabIndex = 8
- Top = 3165
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Maps"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 5
- Left = 6240
- TabIndex = 9
- Top = 2250
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Visual &Printer"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 9
- Left = 4275
- TabIndex = 2
- Top = 3645
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "&ViewPort"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 8
- Left = 6240
- TabIndex = 1
- Top = 1785
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "&Print Preview"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 7
- Left = 4275
- TabIndex = 0
- Top = 2250
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Pre-Printed Forms"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 6
- Left = 4275
- TabIndex = 3
- Top = 2700
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Visual &Clipboard"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 3
- Left = 6240
- TabIndex = 4
- Top = 3645
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "&Borders FX"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 1
- Left = 6240
- TabIndex = 6
- Top = 3180
- Width = 1830
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "&Floating Controls"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Index = 0
- Left = 6240
- TabIndex = 5
- Top = 2700
- Width = 1830
- End
- Begin Image Image1
- Height = 1485
- Left = 2880
- Picture = FMENU.FRX:E02D
- Stretch = -1 'True
- Top = 150
- Width = 3330
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "VideoSoft 2625 Alcatraz Ave., Suite 271, Berkeley, California 94705 Voice (510) 704-8200 Fax (510) 843-0174"
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "Arial"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 435
- Left = 2805
- TabIndex = 7
- Top = 4320
- Width = 5385
- End
- Option Explicit
- Sub Command1_Click (Index As Integer)
- mousepointer = 11
- Select Case Index
- Case 0 ' Toolbox
- ftoolbox.Show
- Case 1 ' Border FX
- fFx.Show
- Case 3 ' Visual Clipboard
- fclipbrd.Show
- Case 5 ' Maps
- fmap.Show
- Case 6 ' Pre-printed forms
- formdes.Show
- Case 7 ' EZ Printing
- fEZPrint.Show 1
- Case 8 ' ViewPort
- fviewport.Show
- Case 9 ' Visual Printer
- fdesk.Show
- Case 10
- fchart.Show
- Case Else
- MsgBox "Demo not available"
- End Select
- mousepointer = 0
- End Sub
-